*, *::after, *::before {
  border: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;

}
body{
  background-color: black;
  color: #fff;
}
@font-face {
  font-family: mont;
  src: url(../Materiais/Montserrat-Regular.otf);
}

@font-face {
  font-family: coco;
  src: url(../Materiais/COCOGOOSE.ttf);
}

@font-face {
  font-family: deisy;
  src: url(../Materiais/Deisy.otf);
}

@font-face {
  font-family: impact;
  src: url(../Materiais/impact.ttf);
}
.cabecalho-principal {
  background-image: url(../Materiais/296.jpg); /* A imagem que você mencionou */
  background-size: cover; /* Faz com que a imagem cubra toda a área */
  background-position: center; /* Centraliza a imagem */
  background-repeat: no-repeat; /* Impede que a imagem se repita */
  height: auto; /* Garante que a altura seja ajustável */
}


.cabecalho{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  
}
.cabecalho-logo{
  display: flex;
  height: 90px;
  margin: 30px;
}

.cabecalho-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-family: mont;
  
}

.cabecalho-menu a:focus {
  outline: 2px solid rgb(0, 0, 0);
}

.nav-links {
  list-style: none;
  display: flex;
  transition: transform 0.3s ease-in-out;
  
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #a0a0a0;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  transition: transform 0.3s ease-in-out;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: transform 0.3s ease-in-out;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.scroll-animation {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s, transform 0.6s;
}

.scroll-animation.visible {
  opacity: 1;
  transform: translateY(0);
}
.responsive-video{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 250px;
  padding-bottom: 250px;
  width: 100%;
  height: auto;
}




.conteudo-biografia{
  background-image: url(../Materiais/6.jpg);
  background-position: right top;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-family: deisy;
  gap: 10px;
}

.conteudo-bio-titulo{
  font-size: 50px;  
}

.conteudo-bio-imagem{
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  align-items: center;
  gap: 20px;

  & img{
    width: 35%;
    height: 100%;
  }
}

.conteudo-bio-text{
  color: #fff;
  display: flex;
  font-size: 25px;
  font-family: mont;
  margin-left: 70px;
  margin-top: 70px;
  text-align: justify;
  justify-items: center top;
  text-align: center;
  background-color: transparent;
  
  height: 500px;
  width: 50%;
  
  overflow: auto;
  
  
  
}
.conteudo-bio-text::-webkit-scrollbar {
  width: 8px; /* Reduzindo a largura para um visual mais moderno */
  border-radius: 5px;
}

.conteudo-bio-text::-webkit-scrollbar-thumb {
  background-color: rgb(97, 0, 0); /* Transparência para um efeito mais suave */
  border-radius: 5px;
}
.player-musica{
  background-image: url(../Materiais/16.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  & h1{
    font-family: coco;
    font-size: 25px;
    margin: 20px 20px;
  }
}
.player{
  background-color: #000000;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 90%; /* Ajusta para telas menores */
  max-width: 400px; /* Limita a largura em telas maiores */


}



.player-img{
  width: 100%; /* Faz a imagem se ajustar ao container */
  height: auto; /* Mantém a proporção da imagem */
  border-radius: 10px; /* Opcional: bordas arredondadas */
  margin-bottom: 10px; /* Espaçamento entre a imagem e o player */
}

audio{
  width: 100%; /* Faz o player de áudio se ajustar ao container */
  margin-bottom: 10px;
}

.controls{
  margin: 10px 0;
}

.controls button{
  padding: 10px 15px;
  margin: 0 5px;
  border: none;
  background-color: #b42b2b;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.controls button:hover{
  background-color: #d94140;
  transition: 0.5s;
}

.play{
  list-style-type: none;
  padding: 0;
  margin: 10px 0 0;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #ffffff;
  font-weight: bold;
  font-family: mont;

  
}

.play li{
  padding: 5px;
  cursor: pointer;
}

.play li.activ{
  font-weight: bold;
  color: #cc0000;
}

/* Personalização do scrollbar */
.play::-webkit-scrollbar{
  width: 8px;
}

.play::-webkit-scrollbar-thumb{
  background-color: #252525;
  border-radius: 4px;
}

.play::-webkit-scrollbar-track{
  background-color: #f4f4f4;
}



.conteudo-agenda{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  background-image: url(../Materiais/9.jpg);
  background-position: center bottom;
  background-size: cover;
}
.conteudo-agenda-titulo{
  font-size: 20px;
  font-family: coco;
  margin-top: 25px;
  margin-bottom: 25px;



}

.datas{
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  flex-direction: column;
  color: #edeaef;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
  

  & button{
    background-color: #06121e;
    color: #fff;
    cursor: pointer;
    font-family: coco;
    font-size: 10px;
    
    &:hover{
      background-color: #0c2135;
      transform: scale(1.1);
      transition: 0.5s;

    }
  }

}
.primeira-data{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: mont;
}
.segunda-data{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: mont;
}
.terceira-data{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: mont;
}

.quarta-data{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: mont;
}

.conteudo-galeria-titulo{
  font-size: 20px;
  font-family: coco;
  margin: 20px 20px;
  
}



:root {
--hue: 206;
--bkg: var(--hue) 50% 96%;
--text: var(--hue) 70% 9%;
--dark: var(--hue) 70% 3%;
}

.conteudo-galeria {
display: grid;
place-items: center;
background-image: url(../Materiais/15.jpg);

background-size: cover;
background-position: center;
padding-bottom: 100px;


}

.container {
max-width: 1200px;
margin: auto;

}
.logo{
height: 100px;
}

.image-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
overflow: hidden;

}

.image-item {
flex: 1 0 28%;
min-width: 200px;
cursor: zoom-in;
}

.image-item img {
width: 100%;
height: 250px;
object-fit: cover;
transition: transform 250ms cubic-bezier(0.79, 0.25, 0, 1.07);
}

.image-item:is(:hover, :focus) img {
transform: scale(1.03);
}
.contratante{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
  flex-wrap: wrap;
  font-family: mont;
  font-size: 12px;
  padding-top: 20px;
}
.botao-estilizado {
  font-size: 20px;
  padding: 15px 30px;
  border: 2px solid white;
  background-color: transparent;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.botao-estilizado:hover {
  transform: scale(1.1);
  background-color: white;
  color: black;
  border-color: black;
}

.conteudo-contato{
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  & input, textarea{
    background-color: #ffffff;
    color: #000000;
    font-family: mont;
  }
  & button{
    background-color: #1c1c1c;
    cursor: pointer;
    color: #fff;
    font-family: mont;
    &:hover{
      background-color: #232224;
      
      transition: 0.7s;

    }
  }

  
}



.conteudo-todo{
  background-image: url(../Materiais/14.jpg);
  background-size: cover;
}

.conteudo-contato-titulo{
  font-size: 20px;
  font-family: coco;
  margin: 20px;
}

.conteudo-contato-numero{
  font-family: mont;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  text-align: center;

}

.link-whats{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 8px;
}


.imagem{
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-around;
  margin-bottom: 15px;
  height: 20px;

}
i{
  color:var(--fa-inverse,#fff);
}

i:hover{
  transform: scale(1.1);
}



form {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  margin: auto;
  font-family: mont;
  text-align: center;
  
}
form p{
  font-size: 20px;
}

form label{
  font-size: 13px;
}

input, textarea, button {
  margin: 5px 0;
  padding: 10px;
  border-radius:5px;

  border-color: #cd8d7b9c;
}



footer{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 5px;
  text-align: center;
  gap: 10px;
  font-family: mont;
  background-color: rgb(43, 44, 44);


}

footer img{
  height: 20px;
  flex-direction: row;
}


/* Media Queries */
@media (max-width: 1200px) {
  .cabecalho-logo{
    
  }
  .cabecalho-menu {
    flex-direction: column;
    gap: 10px;
  }

  .conteudo-bio-imagem{
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
  
    & img{
      width: 50%;
      height: 100%;
    }
  }

  .conteudo-bio-text {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }

  .image-item {
    flex: 1 0 45%;
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  .cabecalho-principal {
    
    background-image: url(../Materiais/4.jpg);
    background-position: top;
    background-size: cover;
    
  }
  .player-musica{
    background-image: url(../Materiais/19.jpg);
  }
  .conteudo-galeria{
    background-image: url(../Materiais/17.jpg);
  }

  .cabecalho {
    flex-direction: row;
  }

  .cabecalho-logo {
    margin: 10px 0;
    height: 95px;
    padding: 12px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #1c1c1c;
    width: 100%;
    height: 100%;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    transform: translateY(-100%);

}

.nav-links li {
    margin: 10px 0;
    
}

.nav-links li a{
  font-size: 20px;
}

.hamburger {
    display: flex;
}

.nav-links.active {
    display: flex;
    transform: translateY(0);
}

  .conteudo-player iframe {
    width: 100%;
    height: auto;
  }

  .conteudo-biografia {
    padding: 10px;
    
  }
  .conteudo-biografia img{
    display: none;
  }

  .conteudo-bio-titulo {
    font-size: 40px;

  }

  .conteudo-bio-text{
    font-size: 16px;
    width: 100%;
    height: 350px;
  }

  .conteudo-todo{
    background-image: url(../Materiais/18.jpg);
    background-size: cover;

  }

  .conteudo-contato-numero{
    color: white;
    -webkit-text-stroke: 0.4px rgb(0, 0, 0);
    gap: 20px;
    font-size: 12px;
    padding-top: 20px;
  }
  

  .primeira-data,
  .segunda-data, .terceira-data, .quarta-data {
    flex-direction: column;
    gap: 5px;
  }

  .conteudo-agenda-titulo{
    display: flex;

    align-items: center;

  }


  .image-item {
    flex: 1 0 100%;
    min-width: 100px;
  }

  form {
    max-width: 100%;
  }

  footer {
    flex-direction: row;
    gap: 5px;
  }

  footer img {
    height: 15px;
  }
}

















